home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Interplay's Learn to Program Basic (Review Copy)
/
Learn to Program Basic Review Copy (Interplay)(June 23, 1998).ISO
/
pc
/
ltpbasic
/
refxmpl
/
len02.bas
< prev
next >
Wrap
BASIC Source File
|
1998-04-07
|
164b
|
12 lines
CLS
Print "Type in your name"
Input name$
L = Len(name$)
Print
For n = L to 1 Step -1
Print Mid$(name$,n,1);
Next n
Print
Print "is your name spelled backward!"